home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
acctdaytotals.sql
next >
Wrap
Text File
|
2000-05-12
|
663b
|
20 lines
/* RCSVER $Id: acctdaytotals.sql,v 1.1 1999-03-19 11:22:02-06 evan CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: cashboxcount
* Date: 1/10/1999
* memo: Evan M. Ghormley
* Description: Create the cashboxcount table.
* Changes:
************************************************************************* */
CREATE TABLE acctdaytotals
(
acctday_total_seq_num NUMBER(38) PRIMARY KEY,
acct_date DATE,
coin_total NUMBER(20,2),
bill_total NUMBER(20,2),
grand_total NUMBER(20,2)
);